home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / Emulation_Include_Files / rpc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  816 b   |  57 lines

  1. /*++
  2.  
  3. Copyright (c) 1991-1998 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     rpc.h
  8.  
  9. Abstract:
  10.  
  11.     Master include file for RPC applications.
  12.  
  13. --*/
  14.  
  15. #ifndef RPC_NO_WINDOWS_H
  16. #include <windows.h>
  17. #endif // RPC_NO_WINDOWS_H
  18.  
  19. #ifndef __RPC_H__
  20. #define __RPC_H__
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25.  
  26. #define __RPC_WIN32__
  27. #define __RPC_NT__
  28.  
  29. typedef void * I_RPC_HANDLE;
  30. typedef long RPC_STATUS;
  31.  
  32. #define RPC_UNICODE_SUPPORTED
  33. #define __RPC_FAR
  34. #define __RPC_API  __stdcall
  35. #define __RPC_USER __stdcall
  36. #define __RPC_STUB __stdcall
  37. #define RPC_ENTRY  __stdcall
  38.  
  39. #ifdef THISPREVENTSCOMMFROMCOMPILING
  40. #ifdef IN
  41. #undef IN
  42. #undef OUT
  43. #undef OPTIONAL
  44. #endif /* IN */
  45. #endif
  46.  
  47. // #include "rpcdce.h"
  48.  
  49. #include <winerror.h>
  50.  
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54.  
  55. #endif // __RPC_H__
  56.  
  57.